home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dr. Windows 3
/
dr win3.zip
/
dr win3
/
UTILITY1
/
BTNGO.ZIP
/
BTNGOC.ZIP
/
INI.HPP
< prev
next >
Wrap
C/C++ Source or Header
|
1993-09-28
|
450b
|
14 lines
// must include windows.h before this file
// class designed to use ini file with name same as .exe
// and in same directory, just needs instance handle
class IniFile{
char filename[256];
int file_set_up;
public:
IniFile();
~IniFile();
void set_instance(HINSTANCE instance);
int get_screen_numbers(char *grp_file,int& x,int& y,int& sb_ontop);
void write_screen_numbers(char *grp_file,HWND hwnd,int ontop);
};